home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------------
- //
- // Mugs.cdm - Custom Data Module for Mugs Application
- //
- // Requires BDE Alias: MUGS
- //
- // Visual dBASE Samples Group
- //
- // $Revision: 1.0 $
- //
- // Copyright (c) 1997, Borland International, Inc.
- // All rights reserved.
- //
- //---------------------------------------------------------------
-
- class mugsDataModule of DATAMODULE custom
-
-
- this.SESSIONMUGS = new SESSION()
- this.SESSIONMUGS.parent = this
- with (this.SESSIONMUGS)
- left = 2
- top = 1
- lockRetryInterval = 0
- endwith
-
-
- this.DBMUGS = new DATABASE()
- this.DBMUGS.parent = this
- with (this.DBMUGS)
- left = 6
- top = 1
- databaseName = "MUGS"
- session = form.SESSIONMUGS
- active = true
- endwith
-
- endclass
-